home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Development / source-highlight-1.6.1 / Doc / Hello.java < prev    next >
Text File  |  2002-11-17  |  986b  |  36 lines

  1. /*
  2.   This is a classical Hello program
  3.   to test source-highlight with Java programs.
  4.   
  5.   to have an html translation type
  6.  
  7.     source-highlight -s java -f html --input Hello.java --output Hello.html
  8.     source-highlight -s java -f html < Hello.java > Hello.html
  9.  
  10.   or type source-highlight --help for the list of options
  11.  
  12.   written by
  13.   Lorenzo Bettini <bettini@gnu.org>
  14.   http://www.lorenzobettini.it
  15.   http://www.gnu.org/software/src-highlite
  16. */
  17.  
  18. import java.io.* ;
  19.  
  20. public class Hello {
  21.     int foo = 1998 ;
  22.     int hex_foo = 0xCAFEBABE;
  23.     boolean b ;
  24.     Integer i = null ;
  25.     char c = '\'', d = 'n', e = '\\' ;
  26.     String xml = "<tag attr=\"value\">ä</tag>", foo2 = "\\" ;
  27.     
  28.     public static void main( String args[] ) {
  29.     // just some greetings ;-)  /*
  30.     System.out.println( "Hello from java2html :-)" ) ;
  31.     System.out.println( "\tby Lorenzo Bettini" ) ;
  32.     System.out.println( "\tbettini@gnu.org" ) ;
  33.         //System.out.println( "bye bye... :-D" ) ; // see you soon
  34.     }
  35. }
  36.